All Questions
5 questions
1vote
2answers
465views
Python Quicksort Implementation with duplicates
Please critique my implementation of Quicksort in python 3.8: ...
5votes
1answer
145views
Quicksort Algorithm Speed
I have made a sorting algorithm in Python 3. This sorting algorithm is a modified optimized median of 3 quicksort, with network sorting for lists of size up to 16 and for finding the median. I have ...
2votes
1answer
180views
Pythonic quick sort
I'm new to the world of python, and wrote this quick sort implementation which was taught to us in an algorithms class. I would like to learn to write code less like C++ and more pythonic. Could you ...
3votes
3answers
484views
2votes
2answers
706views
Implementation of quicksort algorithm
I'm currently doing an algorithms course and implemented this version of the quicksort algorithm. I would like to know if it is an efficient implementation. I've seen a couple others where there is a ...